.nlmcontainer {
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
}

h1 {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: #222;
}

h2 {
  color: #292929;
  margin-bottom: 20px;
}

h3 {
  color: #1b84fc;
  margin-bottom: 12px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.card-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  /* border-left: 6px solid #ff9800; */
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

ul {
  list-style: none;
  padding: 0;
}

.list-two-col {
  column-count: 2;
  column-gap: 20px;
}

.book-item {
  padding: 8px;
  border-left: 4px solid #f4a261;
  margin-bottom: 8px;
  background: #fdfdfd;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.book-item:hover {
  background: #ffefd3;
  transform: translateX(5px);
}

.card.note {
  border-left: 6px solid #ff5100;
}

.card.note h3 {
  color: #ff5100;
}

@media (max-width: 800px) {
  .list-two-col {
    column-count: 1;
  }
}
